From: Steven Tamm Date: Sun, 6 Jun 2004 20:53:20 +0000 (+0000) Subject: (x_create_tip_frame): Fix Mac OS X 10.1 compilation problem due to newly defined... X-Git-Tag: archive/raspbian/1%29.2+1-2+rpi1~1^2~22120 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:///%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:/?a=commitdiff_plain;h=b0507c020d9e22127e1dff66d7f20b9835dae6e0;p=emacs.git (x_create_tip_frame): Fix Mac OS X 10.1 compilation problem due to newly defined variable --- diff --git a/src/macfns.c b/src/macfns.c index 92d729248c9..5c1b7770640 100644 --- a/src/macfns.c +++ b/src/macfns.c @@ -3808,8 +3808,10 @@ x_create_tip_frame (dpyinfo, parms, text) BLOCK_INPUT; SetRect (&r, 0, 0, 1, 1); if (CreateNewWindow (kHelpWindowClass, - kWindowNoActivatesAttribute - | kWindowIgnoreClicksAttribute, +#ifdef MAC_OS_X_VERSION_10_2 + kWindowIgnoreClicksAttribute | +#endif + kWindowNoActivatesAttribute, &r, &tip_window) == noErr) { FRAME_MAC_WINDOW (f) = tip_window;